home *** CD-ROM | disk | FTP | other *** search
- #ifndef __CPopupWindowError_h__
- #define __CPopupWindowError_h__
-
- #include "CError.h"
-
- /////////////////////////////////////////////////////////////////////////////
- //
- // constants
- //
-
- #define DATA_ALLOCATION_ERROR (BaseErrorCodePopupWindow + 0)
- #define NO_CNXN_PT_CONTAINER_ERROR (BaseErrorCodePopupWindow + 1)
- #define CANT_ADD_CNXN_PT_ERROR (BaseErrorCodePopupWindow + 2)
- #define CANT_ENUM_OBJECTS_ERROR (BaseErrorCodePopupWindow + 3)
- #define CANT_ADVISE_CNXN_ERROR (BaseErrorCodePopupWindow + 4)
- #define EOF_AND_NO_IMAGE_ERROR (BaseErrorCodePopupWindow + 5)
- #define DATA_REALLOCATION_ERROR (BaseErrorCodePopupWindow + 6)
- #define IMAGE_READ_ERROR (BaseErrorCodePopupWindow + 7)
-
- /////////////////////////////////////////////////////////////////////////////
- //
- // CPopupWindowError class definition
- //
-
- class CPopupWindowError : public CError
- {
- public:
- CPopupWindowError ( ErrorCode error );
- CPopupWindowError ( ErrorCode error, CErrorControl * control );
- virtual void HandleError ( void );
- };
-
- #endif // __CPopupWindowError_h__
-